home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-20 | 1.1 KB | 32 lines | [TEXT/MPS ] |
- WindowRect External Module
- Release Notes
-
- 1.0d1 4/16/94 Josh Jacobs
-
- First release of the context check. The syntax is simple, the first parameter is a rectangle,
- the second a pstring with the name of the window to check against. Since Nevada does not support rects
- as a parameter the DCC should contain 4 shorts in the order TOP, LEFT, BOTTOM, RIGHT. The pstring
- parameter is either "Front" or the name of the window you want to test. The following is
- an example of possible DCC statements.
-
- <DCC> "IsFrontWindowsRect",'WRCT', 'MACS', short, short, short, short, pstring:"Front"
- <DCC> "IsGXPrintOptionsListVisible",'WRCT', 'ttxt', short:0 , short:0, short:240, short:200, pstring:"Print"
-
- these might then be used as such:
-
- …
- <Panel> "First"
- <If> IsFrontWindowsRect(0,0,150,360)
- <Panel> "Second"
- …
-
- …
- <Panel> "First"
- <If> IsGXPrintOptionsListVisible()
- <Panel> "Second"
- …
-
- 1.0d2 4/20/94 Josh Jacobs
- Second release of the context check. Added a new debug version of the check that allows authors to hold
- down the shift key and have the rect of the front window be displayed in the debugger. MAKE SURE THIS DOES
- NOT SHIP!